home *** CD-ROM | disk | FTP | other *** search
/ Computer Arts: Pro Software Skills - Photoshop / Computer Arts Pro Software Skills Photoshop.iso / pc / main.fla / LIBRARY / videoPlayer.xml < prev    next >
Encoding:
Text File  |  2011-05-24  |  42.0 KB  |  1,125 lines

  1. <DOMSymbolItem xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://ns.adobe.com/xfl/2008/" name="videoPlayer" itemID="4785f8cc-00000203" sourceFlashFilepath="..\INTERFACES\CAP 109\main_cap.fla" sourceLibraryItemHRef="videoPlayer" sourceLastModified="1200922582" lastModified="1307350987" lastUniqueIdentifier="26">
  2.   <timeline>
  3.     <DOMTimeline name="videoPlayer" currentFrame="1">
  4.       <layers>
  5.         <DOMLayer name="Layer 2" color="#9933CC" current="true" isSelected="true">
  6.           <frames>
  7.             <DOMFrame index="0" keyMode="9728">
  8.               <Actionscript>
  9.                 <script><![CDATA[stop();
  10.  
  11. var videoSizeSet = false;
  12.  
  13. var selectorButtons:Array = Array(videoSelector.vidButton1, videoSelector.vidButton2, videoSelector.vidButton3, videoSelector.vidButton4, videoSelector.vidButton5, videoSelector.vidButton6, videoSelector.vidButton7, videoSelector.vidButton8, videoSelector.vidButton9);
  14. myVideoPlayer.playPauseButton = myPlayButton;
  15. myVideoPlayer.backButton = myBackButton;
  16.  
  17. //function init() {
  18. trace("initialising video player");
  19.  
  20. MovieClip(myVideoPlayer.getVideoPlayer(myVideoPlayer.activeVideoPlayerIndex))._video.smoothing = true;
  21.  
  22. //myVideoPlayer.bufferingBar = myBufferBar;
  23.  
  24.  
  25.  
  26. //setContentPath(_root.videoPath[0]);
  27.  
  28. // SETUP THE VIDEO SELECTOR
  29.  
  30. videoSelector._visible = false;
  31.  
  32. /*
  33. Requires:
  34. - FLVPlayback component on the Stage with an instance name of my_FLVPlybk
  35. */
  36. //import mx.video.*;
  37. var listenerObject:Object = new Object();
  38. listenerObject.stateChange = function(eventObject:Object):Void  {
  39.     trace(myVideoPlayer.state+": playhead time is: "+myVideoPlayer.playheadTime);
  40.     if (myVideoPlayer.state == "playing") {
  41.         if (!videoSizeSet) {
  42.             setVideoSize();
  43.         }
  44.         _root.flvPlaying = true;
  45.     } else {
  46.         _root.flvPlaying = false;
  47.     }
  48.     if (myVideoPlayer.state == "buffering") {
  49.         trace("buffering");
  50.         trace("w="+myVideoPlayer.metadata.width+" h="+myVideoPlayer.metadata.height);
  51.     }
  52.     //if (myVideoPlayer.state == "loading") { 
  53.     //flvPlaying = false;
  54.     //setPlayHead();
  55.     //}
  56. };
  57. myVideoPlayer.addEventListener("stateChange",listenerObject);
  58.  
  59.  
  60. import mx.video.*;
  61. var progressObject:Object = new Object();
  62. progressObject.progress = function(eventObject:Object):Void  {
  63.     if (myVideoPlayer.metadataLoaded) {
  64.  
  65.         vOff = 0;
  66.         hOff = 0;
  67.         viewAspect = 320.0/240.0;
  68.         ht = myVideoPlayer.metadata.height;
  69.         wd = myVideoPlayer.metadata.width;
  70.  
  71.         if (wd>ht) {
  72.             ratio = 320.0/wd;
  73.             vidAspect = ht/wd;
  74.             vidWidth = wd*ratio;
  75.             vidHeight = vidWidth*vidAspect;
  76.             vOff = (240.0-vidHeight)/2;
  77.             if (vidHeight>240.0) {
  78.                 // scale it down
  79.                 ratio = 240.0/ht;
  80.                 vidHeight = ht*ratio;
  81.                 vidWidth = wd*ratio;
  82.                 vOff = 0.0;
  83.                 hOff = (320.0-vidWidth)/2;
  84.             }
  85.             //vidHeight = 586.0*vidAspect;    
  86.             //vidWidth = 840 * ratio
  87.  
  88.         } else {
  89.             ratio = 240.0/ht;
  90.             vidAspect = wd/ht;
  91.             vidWidth = 320.0*vidAspect;
  92.             vidHeight = 240.0;
  93.             hOff = (320.0-vidWidth)/2;
  94.         }
  95.         trace("Scale Ratio: "+ratio+" Video Aspect: "+vidAspect);
  96.         myVideoPlayer._width = vidWidth;
  97.         myVideoPlayer._height = vidHeight;
  98.         myVideoPlayer._x = hOff;
  99.         myVideoPlayer._y = vOff;
  100.         trace(vOff+"   "+hOff);
  101.         // Still Too High
  102.         trace("Height is "+myVideoPlayer.metadata.height);
  103.         trace("Width is "+myVideoPlayer.metadata.width);
  104.         trace("Duration is "+myVideoPlayer.metadata.duration+" seconds");
  105.     }
  106. };
  107. myVideoPlayer.addEventListener("progress",progressObject);
  108.  
  109.  
  110. dragBar.dragger.onPress = function() {
  111.     //_root.pauseVideo(true)
  112.     myVideoPlayer.pause();
  113.     startDrag(dragBar.dragger, false, dragBar.bar._x-dragBar.bar._width, dragBar.bar._y, dragBar.bar._x, dragBar.bar._y);
  114. };
  115.  
  116. dragBar.dragger.onRelease = function() {
  117.  
  118.     trace("settingplayhead");
  119.     pc = 1.0+(dragBar.dragger._x/dragBar.bar._width);
  120.     myVideoPlayer.playheadTime = (myVideoPlayer.totalTime*pc);
  121.     //myVideoPlayer.playheadTime = 
  122.     myVideoPlayer.play();
  123.     //_root.pauseVideo(false)
  124.     stopDrag();
  125. };
  126.  
  127.  
  128. dragBar.dragger.onReleaseOutside = dragBar.dragger.onRelease;
  129.  
  130. playHeadMover = setInterval(movePlayhead, 20, 0);
  131.  
  132. //}
  133.  
  134. function movePlayhead() {
  135.     if (myVideoPlayer.state == "playing") {
  136.         pc = myVideoPlayer.playheadTime/myVideoPlayer.totalTime;
  137.         dragBar.dragger._x = -dragBar.bar._width+(dragBar.bar._width*pc);
  138.     }
  139. }
  140.  
  141. function setVideoSize() {
  142.     trace("SET VIDEO SIZE CALLED ==-================");
  143.  
  144.     vOff = 0;
  145.     hOff = 0;
  146.     viewAspect = 320.0/240.0;
  147.     ht = myVideoPlayer.metadata.height;
  148.     wd = myVideoPlayer.metadata.width;
  149.  
  150.     if (wd>ht) {
  151.         ratio = 320.0/wd;
  152.         vidAspect = ht/wd;
  153.         vidWidth = wd*ratio;
  154.         vidHeight = vidWidth*vidAspect;
  155.         vOff = (240.0-vidHeight)/2;
  156.         if (vidHeight>240.0) {
  157.             // scale it down
  158.             ratio = 240.0/ht;
  159.             vidHeight = ht*ratio;
  160.             vidWidth = wd*ratio;
  161.             vOff = 0.0;
  162.             hOff = (320.0-vidWidth)/2;
  163.         }
  164.         //vidHeight = 586.0*vidAspect;    
  165.         //vidWidth = 840 * ratio
  166.  
  167.     } else {
  168.         ratio = 240.0/ht;
  169.         vidAspect = wd/ht;
  170.         vidWidth = 320.0*vidAspect;
  171.         vidHeight = 240.0;
  172.         hOff = (320.0-vidWidth)/2;
  173.     }
  174.     trace("Scale Ratio: "+ratio+" Video Aspect: "+vidAspect);
  175.     myVideoPlayer._width = vidWidth;
  176.     myVideoPlayer._height = vidHeight;
  177.     myVideoPlayer._x = hOff;
  178.     myVideoPlayer._y = vOff;
  179.     trace(vOff+"   "+hOff);
  180.     // Still Too High
  181.     trace("Height is "+myVideoPlayer.metadata.height);
  182.     trace("Width is "+myVideoPlayer.metadata.width);
  183.     trace("Duration is "+myVideoPlayer.metadata.duration+" seconds");
  184.     videoSizeSet = true;
  185.  
  186. }
  187.  
  188.  
  189. function setVideoLabels(num) {
  190.     numVids = _root.videoResourceList.length;
  191.  
  192.     for (p=0; p<selectorButtons.length; p++) {
  193.         selectorButtons[p]._visible = false;
  194.     }
  195.  
  196.     for (i=0; i<_root.videoResourceList.length; i++) {
  197.         trace("setting video selector "+_root.videoResourceList[i]);
  198.         vidName = _root.videoResourceList[i];
  199.         vidName = vidName.slice(0, -4);
  200.         selectorButtons[i].vidName = vidName;
  201.         selectorButtons[i]._visible = true;
  202.     }
  203.  
  204.  
  205.  
  206. }
  207.  
  208. function setContentPath(path) {
  209.     videoSizeSet = false;
  210.     //import mx.video.*;
  211.     trace("setting SMALL contentPath to:"+path+"|");
  212.     //bigVideoPlayer.rewind()
  213.     //bigVideoPlayer.pause()
  214.     //bigVideoPlayer.contentPath = path;
  215.     //bigVideoPlayer.load(path);
  216.     tPath = path;
  217.     myVideoPlayer.contentPath = tPath;
  218.     //myVideoPlayer.load(mdm.Application.path+tPath)
  219.     trace("contentPath is now "+myVideoPlayer.contentPath);
  220.     myVideoPlayer.rewind()
  221.     myVideoPlayer.play();
  222.     //this.gotoAndStop(1)
  223. }]]></script>
  224.               </Actionscript>
  225.               <elements/>
  226.             </DOMFrame>
  227.             <DOMFrame index="1" keyMode="9728">
  228.               <Actionscript>
  229.                 <script><![CDATA[stop();
  230.  
  231. var selectorButtons:Array = Array(videoSelector.vidButton1, videoSelector.vidButton2, videoSelector.vidButton3, videoSelector.vidButton4, videoSelector.vidButton5, videoSelector.vidButton6, videoSelector.vidButton7, videoSelector.vidButton8, videoSelector.vidButton9);
  232. bigVideoPlayer.playPauseButton = bigPlayButton;
  233. bigVideoPlayer.backButton = bigBackButton;
  234.  
  235.  
  236. trace("initialising video player");
  237.  
  238. //bigVideoPlayer.bufferingBar = myBufferBar;
  239. MovieClip(bigVideoPlayer.getVideoPlayer(bigVideoPlayer.activeVideoPlayerIndex))._video.smoothing = true;
  240.  
  241.  
  242. videoSelectHint._visible = true;
  243.  
  244. //setContentPath(_root.videoPath[0]);
  245.  
  246. // SETUP THE VIDEO SELECTOR
  247.  
  248. videoSelector._visible = false;
  249.  
  250. /*
  251. Requires:
  252. - FLVPlayback component on the Stage with an instance name of my_FLVPlybk
  253. */
  254. import mx.video.*;
  255. var listenerObject:Object = new Object();
  256. listenerObject.stateChange = function(eventObject:Object):Void  {
  257.     trace(bigVideoPlayer.state+": playhead time is: "+bigVideoPlayer.playheadTime);
  258.     if (bigVideoPlayer.state == "playing") {
  259.         _root.flvPlaying = true;
  260.     } else {
  261.         _root.flvPlaying = false;
  262.     }
  263.     //if (bigVideoPlayer.state == "loading") {
  264.     //flvPlaying = false;
  265.     //setPlayHead();
  266.     //}
  267. };
  268. bigVideoPlayer.addEventListener("stateChange",listenerObject);
  269.  
  270.  
  271. import mx.video.*;
  272. var bigProgressObject:Object = new Object();
  273. bigProgressObject.progress = function(eventObject:Object):Void  {
  274.     if (bigVideoPlayer.metadataLoaded) {
  275.  
  276.         vOff = 0;
  277.         hOff = 0;
  278.         viewAspect = 874.0/560.0;
  279.         ht = bigVideoPlayer.metadata.height;
  280.         wd = bigVideoPlayer.metadata.width;
  281.  
  282.         if (wd>ht) {
  283.             ratio = 874.0/wd;
  284.             vidAspect = ht/wd;
  285.             vidWidth = wd*ratio;
  286.             vidHeight = vidWidth*vidAspect;
  287.             vOff = (560.0-vidHeight)/2;
  288.             if (vidHeight>560.0) {
  289.                 // scale it down
  290.                 ratio = 560.0/ht;
  291.                 vidHeight = ht*ratio;
  292.                 vidWidth = wd*ratio;
  293.                 vOff = 0.0;
  294.                 hOff = (874.0-vidWidth)/2;
  295.             }
  296.             //vidHeight = 586.0*vidAspect; 
  297.             //vidWidth = 840 * ratio
  298.  
  299.         } else {
  300.             ratio = 586.0/ht;
  301.             vidAspect = wd/ht;
  302.             vidWidth = 840.0*vidAspect;
  303.             vidHeight = 586.0;
  304.             hOff = (840.0-vidWidth)/2;
  305.         }
  306.         trace("Scale Ratio: "+ratio+" Video Aspect: "+vidAspect);
  307.         bigVideoPlayer._width = vidWidth;
  308.         bigVideoPlayer._height = vidHeight;
  309.         bigVideoPlayer._x = hOff-474;
  310.         bigVideoPlayer._y = vOff-267;
  311.         trace(vOff+"   "+hOff);
  312.         // Still Too High
  313.         trace("Height is "+bigVideoPlayer.metadata.height);
  314.         trace("Width is "+bigVideoPlayer.metadata.width);
  315.         trace("Duration is "+bigVideoPlayer.metadata.duration+" seconds");
  316.     }
  317. };
  318. bigVideoPlayer.addEventListener("progress",bigProgressObject);
  319.  
  320. dragBarBig.dragger.onPress = function() {
  321.     //_root.pauseVideo(true)
  322.     bigVideoPlayer.pause();
  323.     startDrag(dragBarBig.dragger, false, dragBarBig.bar._x-dragBarBig.bar._width, dragBarBig.bar._y, dragBarBig.bar._x, dragBarBig.bar._y);
  324. };
  325. dragBarBig.dragger.onRelease = function() {
  326.  
  327.     trace("settingplayhead");
  328.     pc = 1.0+(dragBarBig.dragger._x/dragBarBig.bar._width);
  329.     bigVideoPlayer.playheadTime = (bigVideoPlayer.totalTime*pc);
  330.     //bigVideoPlayer.playheadTime = 
  331.     bigVideoPlayer.play();
  332.     //_root.pauseVideo(false)
  333.     stopDrag();
  334. };
  335.  
  336.  
  337. dragBarBig.dragger.onReleaseOutside = dragBarBig.dragger.onRelease;
  338.  
  339. playHeadMover = setInterval(movePlayhead, 20, 0);
  340.  
  341. function setVideoSize() {
  342.  
  343.     vOff = 0;
  344.     hOff = 0;
  345.     viewAspect = 874.0/560.0;
  346.     ht = bigVideoPlayer.metadata.height;
  347.     wd = bigVideoPlayer.metadata.width;
  348.  
  349.     if (wd>ht) {
  350.         ratio = 874.0/wd;
  351.         vidAspect = ht/wd;
  352.         vidWidth = wd*ratio;
  353.         vidHeight = vidWidth*vidAspect;
  354.         vOff = (560.0-vidHeight)/2;
  355.         if (vidHeight>560.0) {
  356.             // scale it down
  357.             ratio = 560.0/ht;
  358.             vidHeight = ht*ratio;
  359.             vidWidth = wd*ratio;
  360.             vOff = 0.0;
  361.             hOff = (874.0-vidWidth)/2;
  362.         }
  363.         //vidHeight = 586.0*vidAspect; 
  364.         //vidWidth = 840 * ratio
  365.  
  366.     } else {
  367.         ratio = 586.0/ht;
  368.         vidAspect = wd/ht;
  369.         vidWidth = 840.0*vidAspect;
  370.         vidHeight = 586.0;
  371.         hOff = (840.0-vidWidth)/2;
  372.     }
  373.     trace("Scale Ratio: "+ratio+" Video Aspect: "+vidAspect);
  374.     bigVideoPlayer._width = vidWidth;
  375.     bigVideoPlayer._height = vidHeight;
  376.     bigVideoPlayer._x = hOff-474;
  377.     bigVideoPlayer._y = vOff-267;
  378.     trace(vOff+"   "+hOff);
  379.     // Still Too High
  380.     trace("Height is "+bigVideoPlayer.metadata.height);
  381.     trace("Width is "+bigVideoPlayer.metadata.width);
  382.     trace("Duration is "+bigVideoPlayer.metadata.duration+" seconds");
  383. }
  384.  
  385. function movePlayhead() {
  386.     if (bigVideoPlayer.state == "playing") {
  387.         pc = bigVideoPlayer.playheadTime/bigVideoPlayer.totalTime;
  388.         dragBarBig.dragger._x = -dragBarBig.bar._width+(dragBarBig.bar._width*pc);
  389.     }
  390. }
  391.  
  392. function setVideoLabels() {
  393.     numVids = _root.videoResourceList.length;
  394.  
  395.     for (p=0; p<selectorButtons.length; p++) {
  396.         selectorButtons[p]._visible = false;
  397.     }
  398.  
  399.     for (i=0; i<_root.videoResourceList.length; i++) {
  400.         trace("setting video selector "+_root.videoResourceList[i]);
  401.         vidName = _root.videoResourceList[i];
  402.         vidName = vidName.slice(0, -4);
  403.         selectorButtons[i].vidName = vidName;
  404.         selectorButtons[i]._visible = true;
  405.     }
  406.  
  407. }
  408.  
  409. function setContentPath(path) {
  410.     //import mx.video.*;
  411.     trace("setting BIG VIDEO contentPath to:"+path+"|");
  412.     //bigVideoPlayer.rewind()
  413.     //bigVideoPlayer.pause()
  414.     //bigVideoPlayer.contentPath = path;
  415.     //bigVideoPlayer.load(path);
  416.     tPath = path;
  417.     bigVideoPlayer.contentPath = tPath;
  418.     trace("contentPath is now "+bigVideoPlayer.contentPath);
  419.     bigVideoPlayer.play();
  420. }]]></script>
  421.               </Actionscript>
  422.               <elements/>
  423.             </DOMFrame>
  424.           </frames>
  425.         </DOMLayer>
  426.         <DOMLayer name="Layer 5" color="#4FFFFF">
  427.           <frames>
  428.             <DOMFrame index="0" keyMode="9728">
  429.               <elements/>
  430.             </DOMFrame>
  431.             <DOMFrame index="1" keyMode="9728">
  432.               <elements>
  433.                 <DOMSymbolInstance libraryItemName="Symbol 11" name="videoSelectHint" centerPoint3DX="177.45" centerPoint3DY="297">
  434.                   <matrix>
  435.                     <Matrix tx="141.45" ty="286.5"/>
  436.                   </matrix>
  437.                   <transformationPoint>
  438.                     <Point x="58.5" y="10.5"/>
  439.                   </transformationPoint>
  440.                 </DOMSymbolInstance>
  441.               </elements>
  442.             </DOMFrame>
  443.           </frames>
  444.         </DOMLayer>
  445.         <DOMLayer name="Layer 4" color="#FF4FFF">
  446.           <frames>
  447.             <DOMFrame index="0" keyMode="9728">
  448.               <elements>
  449.                 <DOMSymbolInstance libraryItemName="Symbol 5" name="videoSelector">
  450.                   <matrix>
  451.                     <Matrix tx="85.45" ty="30.5"/>
  452.                   </matrix>
  453.                   <transformationPoint>
  454.                     <Point x="113.5" y="97"/>
  455.                   </transformationPoint>
  456.                 </DOMSymbolInstance>
  457.               </elements>
  458.             </DOMFrame>
  459.             <DOMFrame index="1" keyMode="9728">
  460.               <elements>
  461.                 <DOMSymbolInstance libraryItemName="Symbol 5" name="videoSelector">
  462.                   <matrix>
  463.                     <Matrix tx="74.55" ty="79.05"/>
  464.                   </matrix>
  465.                   <transformationPoint>
  466.                     <Point x="113.5" y="97"/>
  467.                   </transformationPoint>
  468.                 </DOMSymbolInstance>
  469.               </elements>
  470.             </DOMFrame>
  471.           </frames>
  472.         </DOMLayer>
  473.         <DOMLayer name="Layer 3" color="#FFFF4F">
  474.           <frames>
  475.             <DOMFrame index="0" keyMode="9728">
  476.               <elements>
  477.                 <DOMSymbolInstance libraryItemName="videoSelector" name="vidSelector" centerPoint3DX="270.95" centerPoint3DY="246.2">
  478.                   <matrix>
  479.                     <Matrix tx="261.7" ty="234.7"/>
  480.                   </matrix>
  481.                   <transformationPoint>
  482.                     <Point x="9.25" y="11.5"/>
  483.                   </transformationPoint>
  484.                   <Actionscript>
  485.                     <script><![CDATA[on (release) {
  486.     _root.toggleVideoSelector()
  487. }
  488.  
  489. ]]></script>
  490.                   </Actionscript>
  491.                 </DOMSymbolInstance>
  492.               </elements>
  493.             </DOMFrame>
  494.             <DOMFrame index="1" keyMode="9728">
  495.               <elements>
  496.                 <DOMSymbolInstance libraryItemName="videoSelector" name="vidSelector" centerPoint3DX="286.4" centerPoint3DY="317.75">
  497.                   <matrix>
  498.                     <Matrix a="1.634765625" d="1.634765625" tx="271.3" ty="298.95"/>
  499.                   </matrix>
  500.                   <transformationPoint>
  501.                     <Point x="9.25" y="11.5"/>
  502.                   </transformationPoint>
  503.                   <Actionscript>
  504.                     <script><![CDATA[on (release) {
  505.     this._parent.videoSelectHint._visible = false
  506.     _root.toggleVideoSelector()
  507. }
  508. ]]></script>
  509.                   </Actionscript>
  510.                 </DOMSymbolInstance>
  511.               </elements>
  512.             </DOMFrame>
  513.           </frames>
  514.         </DOMLayer>
  515.         <DOMLayer name="Layer 1" color="#4FFF4F">
  516.           <frames>
  517.             <DOMFrame index="0" keyMode="9728">
  518.               <elements>
  519.                 <DOMCompiledClipInstance libraryItemName="FLVPlayback" name="myVideoPlayer" uniqueID="1">
  520.                   <dataBindingXML><![CDATA[<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='imageLoader' oldCopiedComponentPath=''>
  521.     <eventMap>
  522.         <property name="bytesLoaded" value="progress" />
  523.         <property name="bytesTotal" value="progress" />
  524.         <property name="height" value="resize" />
  525.         <property name="paused" value="stateChange" />
  526.         <property name="playheadTime" value="playheadUpdate" />
  527.         <property name="playing" value="stateChange" />
  528.         <property name="preferredHeight" value="metadataReceived" />
  529.         <property name="preferredWidth" value="metadataReceived" />
  530.         <property name="scaleX" value="resize" />
  531.         <property name="scaleY" value="resize" />
  532.         <property name="state" value="stateChange" />
  533.         <property name="stopped" value="stateChange" />
  534.         <property name="totalTime" value="metadataReceived" />
  535.         <property name="volume" value="volumeUpdate" />
  536.         <property name="width" value="resize" />
  537.     </eventMap>
  538.     <property name="activeVideoPlayerIndex">
  539. <schema name="Number" base="Number" class="mx.data.types.Num" required="true" readonly="false" writeonly="false" category="simple" original="true">
  540.             <properties>
  541.                 <property name="defaultLabel" value="" />
  542.                 <property name="defaultUIControl" value="" />
  543.                 <property name="maxValue" value="" />
  544.                 <property name="minValue" value="" />
  545.             </properties>
  546.         </schema>
  547.     </property>
  548.     <property name="bytesLoaded">
  549. <schema name="Number" base="Number" class="mx.data.types.Num" required="true" readonly="false" writeonly="false" category="simple" original="true">
  550.             <properties>
  551.                 <property name="defaultLabel" value="" />
  552.                 <property name="defaultUIControl" value="" />
  553.                 <property name="maxValue" value="" />
  554.                 <property name="minValue" value="" />
  555.             </properties>
  556.         </schema>
  557.     </property>
  558.     <property name="bytesTotal">
  559. <schema name="Number" base="Number" class="mx.data.types.Num" required="true" readonly="false" writeonly="false" category="simple" original="true">
  560.             <properties>
  561.                 <property name="defaultLabel" value="" />
  562.                 <property name="defaultUIControl" value="" />
  563.                 <property name="maxValue" value="" />
  564.                 <property name="minValue" value="" />
  565.             </properties>
  566.         </schema>
  567.     </property>
  568.     <property name="contentPath">
  569. <schema name="String" base="String" class="mx.data.types.Str" required="true" readonly="false" writeonly="false" category="simple" original="true">
  570.             <properties>
  571.                 <property name="defaultLabel" value="" />
  572.                 <property name="defaultUIControl" value="" />
  573.                 <property name="maxLength" value="" />
  574.                 <property name="minLength" value="" />
  575.             </properties>
  576.         </schema>
  577.     </property>
  578.     <property name="height">
  579. <schema name="Number" base="Number" class="mx.data.types.Num" required="true" readonly="false" writeonly="false" category="simple" original="true">
  580.             <properties>
  581.                 <property name="defaultLabel" value="" />
  582.                 <property name="defaultUIControl" value="" />
  583.                 <property name="maxValue" value="" />
  584.                 <property name="minValue" value="" />
  585.             </properties>
  586.         </schema>
  587.     </property>
  588.     <property name="paused">
  589. <schema name="Boolean" base="Boolean" class="mx.data.types.Bool" required="true" readonly="false" writeonly="false" category="simple" original="true">
  590.             <properties>
  591.                 <property name="defaultLabel" value="" />
  592.                 <property name="defaultUIControl" value="" />
  593.             </properties>
  594.         </schema>
  595.     </property>
  596.     <property name="playheadTime">
  597. <schema name="Number" base="Number" class="mx.data.types.Num" required="true" readonly="false" writeonly="false" category="simple" original="true">
  598.             <properties>
  599.                 <property name="defaultLabel" value="" />
  600.                 <property name="defaultUIControl" value="" />
  601.                 <property name="maxValue" value="" />
  602.                 <property name="minValue" value="" />
  603.             </properties>
  604.         </schema>
  605.     </property>
  606.     <property name="playing">
  607. <schema name="Boolean" base="Boolean" class="mx.data.types.Bool" required="true" readonly="false" writeonly="false" category="simple" original="true">
  608.             <properties>
  609.                 <property name="defaultLabel" value="" />
  610.                 <property name="defaultUIControl" value="" />
  611.             </properties>
  612.         </schema>
  613.     </property>
  614.     <property name="preferredHeight">
  615. <schema name="Number" base="Number" class="mx.data.types.Num" required="true" readonly="false" writeonly="false" category="simple" original="true">
  616.             <properties>
  617.                 <property name="defaultLabel" value="" />
  618.                 <property name="defaultUIControl" value="" />
  619.                 <property name="maxValue" value="" />
  620.                 <property name="minValue" value="" />
  621.             </properties>
  622.         </schema>
  623.     </property>
  624.     <property name="preferredWidth">
  625. <schema name="Number" base="Number" class="mx.data.types.Num" required="true" readonly="false" writeonly="false" category="simple" original="true">
  626.             <properties>
  627.                 <property name="defaultLabel" value="" />
  628.                 <property name="defaultUIControl" value="" />
  629.                 <property name="maxValue" value="" />
  630.                 <property name="minValue" value="" />
  631.             </properties>
  632.         </schema>
  633.     </property>
  634.     <property name="scaleX">
  635. <schema name="Number" base="Number" class="mx.data.types.Num" required="true" readonly="false" writeonly="false" category="simple" original="true">
  636.             <properties>
  637.                 <property name="defaultLabel" value="" />
  638.                 <property name="defaultUIControl" value="" />
  639.                 <property name="maxValue" value="" />
  640.                 <property name="minValue" value="" />
  641.             </properties>
  642.         </schema>
  643.     </property>
  644.     <property name="scaleY">
  645. <schema name="Number" base="Number" class="mx.data.types.Num" required="true" readonly="false" writeonly="false" category="simple" original="true">
  646.             <properties>
  647.                 <property name="defaultLabel" value="" />
  648.                 <property name="defaultUIControl" value="" />
  649.                 <property name="maxValue" value="" />
  650.                 <property name="minValue" value="" />
  651.             </properties>
  652.         </schema>
  653.     </property>
  654.     <property name="state">
  655. <schema name="String" base="String" class="mx.data.types.Str" required="true" readonly="false" writeonly="false" category="simple" original="true">
  656.             <properties>
  657.                 <property name="defaultLabel" value="" />
  658.                 <property name="defaultUIControl" value="" />
  659.                 <property name="maxLength" value="" />
  660.                 <property name="minLength" value="" />
  661.             </properties>
  662.         </schema>
  663.     </property>
  664.     <property name="stopped">
  665. <schema name="Boolean" base="Boolean" class="mx.data.types.Bool" required="true" readonly="false" writeonly="false" category="simple" original="true">
  666.             <properties>
  667.                 <property name="defaultLabel" value="" />
  668.                 <property name="defaultUIControl" value="" />
  669.             </properties>
  670.         </schema>
  671.     </property>
  672.     <property name="totalTime">
  673. <schema name="Number" base="Number" class="mx.data.types.Num" required="true" readonly="false" writeonly="false" category="simple" original="true">
  674.             <properties>
  675.                 <property name="defaultLabel" value="" />
  676.                 <property name="defaultUIControl" value="" />
  677.                 <property name="maxValue" value="" />
  678.                 <property name="minValue" value="" />
  679.             </properties>
  680.         </schema>
  681.     </property>
  682.     <property name="volume">
  683. <schema name="Number" base="Number" class="mx.data.types.Num" required="true" readonly="false" writeonly="false" category="simple" original="true">
  684.             <properties>
  685.                 <property name="defaultLabel" value="" />
  686.                 <property name="defaultUIControl" value="" />
  687.                 <property name="maxValue" value="" />
  688.                 <property name="minValue" value="" />
  689.             </properties>
  690.         </schema>
  691.     </property>
  692.     <property name="width">
  693. <schema name="Number" base="Number" class="mx.data.types.Num" required="true" readonly="false" writeonly="false" category="simple" original="true">
  694.             <properties>
  695.                 <property name="defaultLabel" value="" />
  696.                 <property name="defaultUIControl" value="" />
  697.                 <property name="maxValue" value="" />
  698.                 <property name="minValue" value="" />
  699.             </properties>
  700.         </schema>
  701.     </property>
  702.     <property name="x">
  703. <schema name="Number" base="Number" class="mx.data.types.Num" required="true" readonly="false" writeonly="false" category="simple" original="true">
  704.             <properties>
  705.                 <property name="defaultLabel" value="" />
  706.                 <property name="defaultUIControl" value="" />
  707.                 <property name="maxValue" value="" />
  708.                 <property name="minValue" value="" />
  709.             </properties>
  710.         </schema>
  711.     </property>
  712.     <property name="y">
  713. <schema name="Number" base="Number" class="mx.data.types.Num" required="true" readonly="false" writeonly="false" category="simple" original="true">
  714.             <properties>
  715.                 <property name="defaultLabel" value="" />
  716.                 <property name="defaultUIControl" value="" />
  717.                 <property name="maxValue" value="" />
  718.                 <property name="minValue" value="" />
  719.             </properties>
  720.         </schema>
  721.     </property>
  722. </component>
  723. ]]></dataBindingXML>
  724.                   <parametersAsXML><![CDATA[   <property id="autoPlay">
  725.       <Inspectable name="autoPlay" variable="autoPlay" category="" verbose="0" defaultValue="true" type="Boolean"/>
  726.    </property>
  727.    <property id="autoRewind">
  728.       <Inspectable name="autoRewind" variable="autoRewind" category="" verbose="0" defaultValue="true" type="Boolean"/>
  729.    </property>
  730.    <property id="autoSize">
  731.       <Inspectable name="autoSize" variable="autoSize" category="" verbose="0" defaultValue="true" type="Boolean"/>
  732.    </property>
  733.    <property id="bufferTime">
  734.       <Inspectable name="bufferTime" variable="bufferTime" category="" verbose="0" defaultValue="0.2" type="Number"/>
  735.    </property>
  736.    <property id="contentPath">
  737.       <Inspectable name="contentPath" variable="contentPath" category="" verbose="0" defaultValue="" type="Video Content Path"/>
  738.    </property>
  739.    <property id="cuePoints">
  740.       <Inspectable name="cuePoints" variable="cuePoints" category="" verbose="0" defaultValue="" type="Video Cue Points"/>
  741.    </property>
  742.    <property id="isLive">
  743.       <Inspectable name="isLive" variable="isLive" category="" verbose="0" defaultValue="false" type="Boolean"/>
  744.    </property>
  745.    <property id="maintainAspectRatio">
  746.       <Inspectable name="maintainAspectRatio" variable="maintainAspectRatio" category="" verbose="0" defaultValue="true" type="Boolean"/>
  747.    </property>
  748.    <property id="skin">
  749.       <Inspectable name="skin" variable="skin" category="" verbose="0" defaultValue="" type="Video Skin"/>
  750.    </property>
  751.    <property id="skinAutoHide">
  752.       <Inspectable name="skinAutoHide" variable="skinAutoHide" category="" verbose="0" defaultValue="false" type="Boolean"/>
  753.    </property>
  754.    <property id="totalTime">
  755.       <Inspectable name="totalTime" variable="totalTime" category="" verbose="0" defaultValue="0" type="Number"/>
  756.    </property>
  757.    <property id="version_1_0_2">
  758.       <Inspectable name="version_1_0_2" variable="version_1_0_2" category="" verbose="0" defaultValue="" type="String"/>
  759.    </property>
  760.    <property id="volume">
  761.       <Inspectable name="volume" variable="volume" category="" verbose="0" defaultValue="100" type="Number"/>
  762.    </property>
  763. ]]></parametersAsXML>
  764.                 </DOMCompiledClipInstance>
  765.                 <DOMComponentInstance libraryItemName="PlayPauseButton" name="myPlayButton" uniqueID="2">
  766.                   <matrix>
  767.                     <Matrix a="0.744400024414063" d="0.745040893554688" tx="-0.2" ty="241.65"/>
  768.                   </matrix>
  769.                   <transformationPoint>
  770.                     <Point x="11.55" y="11.45"/>
  771.                   </transformationPoint>
  772.                   <dataBindingXML><![CDATA[<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='imageLoader' oldCopiedComponentPath=''>
  773. </component>
  774. ]]></dataBindingXML>
  775.                 </DOMComponentInstance>
  776.                 <DOMComponentInstance libraryItemName="BackButton" name="myBackButton" uniqueID="5">
  777.                   <matrix>
  778.                     <Matrix a="0.749832153320313" d="0.749008178710938" tx="18.3" ty="241"/>
  779.                   </matrix>
  780.                   <transformationPoint>
  781.                     <Point x="10.45" y="10.5"/>
  782.                   </transformationPoint>
  783.                   <dataBindingXML><![CDATA[<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='imageLoader' oldCopiedComponentPath=''>
  784. </component>
  785. ]]></dataBindingXML>
  786.                 </DOMComponentInstance>
  787.                 <DOMSymbolInstance libraryItemName="videoZoomButton" name="">
  788.                   <matrix>
  789.                     <Matrix a="0.225692749023438" d="0.225692749023438" tx="309.9" ty="252"/>
  790.                   </matrix>
  791.                   <transformationPoint>
  792.                     <Point x="-26.15" y="-24.8"/>
  793.                   </transformationPoint>
  794.                 </DOMSymbolInstance>
  795.                 <DOMSymbolInstance libraryItemName="dragBar" name="dragBar">
  796.                   <matrix>
  797.                     <Matrix a="0.878570556640625" d="2.34532165527344" tx="47.65" ty="245.35"/>
  798.                   </matrix>
  799.                   <transformationPoint>
  800.                     <Point x="115.25" y="1.75"/>
  801.                   </transformationPoint>
  802.                 </DOMSymbolInstance>
  803.               </elements>
  804.             </DOMFrame>
  805.             <DOMFrame index="1" keyMode="9728">
  806.               <elements>
  807.                 <DOMComponentInstance libraryItemName="PlayPauseButton" name="bigPlayButton" uniqueID="10">
  808.                   <matrix>
  809.                     <Matrix tx="-474.2" ty="312.2"/>
  810.                   </matrix>
  811.                   <transformationPoint>
  812.                     <Point x="11.3" y="11.15"/>
  813.                   </transformationPoint>
  814.                   <dataBindingXML><![CDATA[<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='imageLoader' oldCopiedComponentPath=''>
  815. </component>
  816. ]]></dataBindingXML>
  817.                 </DOMComponentInstance>
  818.                 <DOMComponentInstance libraryItemName="BackButton" name="bigBackButton" uniqueID="11">
  819.                   <matrix>
  820.                     <Matrix tx="-442.9" ty="311.8"/>
  821.                   </matrix>
  822.                   <transformationPoint>
  823.                     <Point x="11.25" y="11.25"/>
  824.                   </transformationPoint>
  825.                   <dataBindingXML><![CDATA[<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='imageLoader' oldCopiedComponentPath=''>
  826. </component>
  827. ]]></dataBindingXML>
  828.                 </DOMComponentInstance>
  829.                 <DOMSymbolInstance libraryItemName="videoZoomButton" name="">
  830.                   <matrix>
  831.                     <Matrix a="0.380706787109375" d="0.380706787109375" tx="353.45" ty="326.55"/>
  832.                   </matrix>
  833.                   <transformationPoint>
  834.                     <Point x="-26.25" y="-24.7"/>
  835.                   </transformationPoint>
  836.                 </DOMSymbolInstance>
  837.                 <DOMSymbolInstance libraryItemName="dragBar" name="dragBarBig">
  838.                   <matrix>
  839.                     <Matrix a="2.85211181640625" d="4.6236572265625" tx="-403.4" ty="315"/>
  840.                   </matrix>
  841.                   <transformationPoint>
  842.                     <Point x="115.15" y="1.75"/>
  843.                   </transformationPoint>
  844.                 </DOMSymbolInstance>
  845.                 <DOMCompiledClipInstance libraryItemName="FLVPlayback" name="bigVideoPlayer" uniqueID="24">
  846.                   <matrix>
  847.                     <Matrix a="2.73124694824219" d="2.44149780273438" tx="-490.6" ty="-286.65"/>
  848.                   </matrix>
  849.                   <transformationPoint>
  850.                     <Point x="160.1" y="120"/>
  851.                   </transformationPoint>
  852.                   <dataBindingXML><![CDATA[<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='imageLoader' oldCopiedComponentPath=''>
  853.     <eventMap>
  854.         <property name="bytesLoaded" value="progress" />
  855.         <property name="bytesTotal" value="progress" />
  856.         <property name="height" value="resize" />
  857.         <property name="paused" value="stateChange" />
  858.         <property name="playheadTime" value="playheadUpdate" />
  859.         <property name="playing" value="stateChange" />
  860.         <property name="preferredHeight" value="metadataReceived" />
  861.         <property name="preferredWidth" value="metadataReceived" />
  862.         <property name="scaleX" value="resize" />
  863.         <property name="scaleY" value="resize" />
  864.         <property name="state" value="stateChange" />
  865.         <property name="stopped" value="stateChange" />
  866.         <property name="totalTime" value="metadataReceived" />
  867.         <property name="volume" value="volumeUpdate" />
  868.         <property name="width" value="resize" />
  869.     </eventMap>
  870.     <property name="activeVideoPlayerIndex">
  871. <schema name="Number" base="Number" class="mx.data.types.Num" required="true" readonly="false" writeonly="false" category="simple" original="true">
  872.             <properties>
  873.                 <property name="defaultLabel" value="" />
  874.                 <property name="defaultUIControl" value="" />
  875.                 <property name="maxValue" value="" />
  876.                 <property name="minValue" value="" />
  877.             </properties>
  878.         </schema>
  879.     </property>
  880.     <property name="bytesLoaded">
  881. <schema name="Number" base="Number" class="mx.data.types.Num" required="true" readonly="false" writeonly="false" category="simple" original="true">
  882.             <properties>
  883.                 <property name="defaultLabel" value="" />
  884.                 <property name="defaultUIControl" value="" />
  885.                 <property name="maxValue" value="" />
  886.                 <property name="minValue" value="" />
  887.             </properties>
  888.         </schema>
  889.     </property>
  890.     <property name="bytesTotal">
  891. <schema name="Number" base="Number" class="mx.data.types.Num" required="true" readonly="false" writeonly="false" category="simple" original="true">
  892.             <properties>
  893.                 <property name="defaultLabel" value="" />
  894.                 <property name="defaultUIControl" value="" />
  895.                 <property name="maxValue" value="" />
  896.                 <property name="minValue" value="" />
  897.             </properties>
  898.         </schema>
  899.     </property>
  900.     <property name="contentPath">
  901. <schema name="String" base="String" class="mx.data.types.Str" required="true" readonly="false" writeonly="false" category="simple" original="true">
  902.             <properties>
  903.                 <property name="defaultLabel" value="" />
  904.                 <property name="defaultUIControl" value="" />
  905.                 <property name="maxLength" value="" />
  906.                 <property name="minLength" value="" />
  907.             </properties>
  908.         </schema>
  909.     </property>
  910.     <property name="height">
  911. <schema name="Number" base="Number" class="mx.data.types.Num" required="true" readonly="false" writeonly="false" category="simple" original="true">
  912.             <properties>
  913.                 <property name="defaultLabel" value="" />
  914.                 <property name="defaultUIControl" value="" />
  915.                 <property name="maxValue" value="" />
  916.                 <property name="minValue" value="" />
  917.             </properties>
  918.         </schema>
  919.     </property>
  920.     <property name="paused">
  921. <schema name="Boolean" base="Boolean" class="mx.data.types.Bool" required="true" readonly="false" writeonly="false" category="simple" original="true">
  922.             <properties>
  923.                 <property name="defaultLabel" value="" />
  924.                 <property name="defaultUIControl" value="" />
  925.             </properties>
  926.         </schema>
  927.     </property>
  928.     <property name="playheadTime">
  929. <schema name="Number" base="Number" class="mx.data.types.Num" required="true" readonly="false" writeonly="false" category="simple" original="true">
  930.             <properties>
  931.                 <property name="defaultLabel" value="" />
  932.                 <property name="defaultUIControl" value="" />
  933.                 <property name="maxValue" value="" />
  934.                 <property name="minValue" value="" />
  935.             </properties>
  936.         </schema>
  937.     </property>
  938.     <property name="playing">
  939. <schema name="Boolean" base="Boolean" class="mx.data.types.Bool" required="true" readonly="false" writeonly="false" category="simple" original="true">
  940.             <properties>
  941.                 <property name="defaultLabel" value="" />
  942.                 <property name="defaultUIControl" value="" />
  943.             </properties>
  944.         </schema>
  945.     </property>
  946.     <property name="preferredHeight">
  947. <schema name="Number" base="Number" class="mx.data.types.Num" required="true" readonly="false" writeonly="false" category="simple" original="true">
  948.             <properties>
  949.                 <property name="defaultLabel" value="" />
  950.                 <property name="defaultUIControl" value="" />
  951.                 <property name="maxValue" value="" />
  952.                 <property name="minValue" value="" />
  953.             </properties>
  954.         </schema>
  955.     </property>
  956.     <property name="preferredWidth">
  957. <schema name="Number" base="Number" class="mx.data.types.Num" required="true" readonly="false" writeonly="false" category="simple" original="true">
  958.             <properties>
  959.                 <property name="defaultLabel" value="" />
  960.                 <property name="defaultUIControl" value="" />
  961.                 <property name="maxValue" value="" />
  962.                 <property name="minValue" value="" />
  963.             </properties>
  964.         </schema>
  965.     </property>
  966.     <property name="scaleX">
  967. <schema name="Number" base="Number" class="mx.data.types.Num" required="true" readonly="false" writeonly="false" category="simple" original="true">
  968.             <properties>
  969.                 <property name="defaultLabel" value="" />
  970.                 <property name="defaultUIControl" value="" />
  971.                 <property name="maxValue" value="" />
  972.                 <property name="minValue" value="" />
  973.             </properties>
  974.         </schema>
  975.     </property>
  976.     <property name="scaleY">
  977. <schema name="Number" base="Number" class="mx.data.types.Num" required="true" readonly="false" writeonly="false" category="simple" original="true">
  978.             <properties>
  979.                 <property name="defaultLabel" value="" />
  980.                 <property name="defaultUIControl" value="" />
  981.                 <property name="maxValue" value="" />
  982.                 <property name="minValue" value="" />
  983.             </properties>
  984.         </schema>
  985.     </property>
  986.     <property name="state">
  987. <schema name="String" base="String" class="mx.data.types.Str" required="true" readonly="false" writeonly="false" category="simple" original="true">
  988.             <properties>
  989.                 <property name="defaultLabel" value="" />
  990.                 <property name="defaultUIControl" value="" />
  991.                 <property name="maxLength" value="" />
  992.                 <property name="minLength" value="" />
  993.             </properties>
  994.         </schema>
  995.     </property>
  996.     <property name="stopped">
  997. <schema name="Boolean" base="Boolean" class="mx.data.types.Bool" required="true" readonly="false" writeonly="false" category="simple" original="true">
  998.             <properties>
  999.                 <property name="defaultLabel" value="" />
  1000.                 <property name="defaultUIControl" value="" />
  1001.             </properties>
  1002.         </schema>
  1003.     </property>
  1004.     <property name="totalTime">
  1005. <schema name="Number" base="Number" class="mx.data.types.Num" required="true" readonly="false" writeonly="false" category="simple" original="true">
  1006.             <properties>
  1007.                 <property name="defaultLabel" value="" />
  1008.                 <property name="defaultUIControl" value="" />
  1009.                 <property name="maxValue" value="" />
  1010.                 <property name="minValue" value="" />
  1011.             </properties>
  1012.         </schema>
  1013.     </property>
  1014.     <property name="volume">
  1015. <schema name="Number" base="Number" class="mx.data.types.Num" required="true" readonly="false" writeonly="false" category="simple" original="true">
  1016.             <properties>
  1017.                 <property name="defaultLabel" value="" />
  1018.                 <property name="defaultUIControl" value="" />
  1019.                 <property name="maxValue" value="" />
  1020.                 <property name="minValue" value="" />
  1021.             </properties>
  1022.         </schema>
  1023.     </property>
  1024.     <property name="width">
  1025. <schema name="Number" base="Number" class="mx.data.types.Num" required="true" readonly="false" writeonly="false" category="simple" original="true">
  1026.             <properties>
  1027.                 <property name="defaultLabel" value="" />
  1028.                 <property name="defaultUIControl" value="" />
  1029.                 <property name="maxValue" value="" />
  1030.                 <property name="minValue" value="" />
  1031.             </properties>
  1032.         </schema>
  1033.     </property>
  1034.     <property name="x">
  1035. <schema name="Number" base="Number" class="mx.data.types.Num" required="true" readonly="false" writeonly="false" category="simple" original="true">
  1036.             <properties>
  1037.                 <property name="defaultLabel" value="" />
  1038.                 <property name="defaultUIControl" value="" />
  1039.                 <property name="maxValue" value="" />
  1040.                 <property name="minValue" value="" />
  1041.             </properties>
  1042.         </schema>
  1043.     </property>
  1044.     <property name="y">
  1045. <schema name="Number" base="Number" class="mx.data.types.Num" required="true" readonly="false" writeonly="false" category="simple" original="true">
  1046.             <properties>
  1047.                 <property name="defaultLabel" value="" />
  1048.                 <property name="defaultUIControl" value="" />
  1049.                 <property name="maxValue" value="" />
  1050.                 <property name="minValue" value="" />
  1051.             </properties>
  1052.         </schema>
  1053.     </property>
  1054. </component>
  1055. ]]></dataBindingXML>
  1056.                   <parametersAsXML><![CDATA[   <property id="autoPlay">
  1057.       <Inspectable name="autoPlay" variable="autoPlay" category="" verbose="0" defaultValue="true" type="Boolean"/>
  1058.    </property>
  1059.    <property id="autoRewind">
  1060.       <Inspectable name="autoRewind" variable="autoRewind" category="" verbose="0" defaultValue="true" type="Boolean"/>
  1061.    </property>
  1062.    <property id="autoSize">
  1063.       <Inspectable name="autoSize" variable="autoSize" category="" verbose="0" defaultValue="true" type="Boolean"/>
  1064.    </property>
  1065.    <property id="bufferTime">
  1066.       <Inspectable name="bufferTime" variable="bufferTime" category="" verbose="0" defaultValue="0.1" type="Number"/>
  1067.    </property>
  1068.    <property id="contentPath">
  1069.       <Inspectable name="contentPath" variable="contentPath" category="" verbose="0" defaultValue="" type="Video Content Path"/>
  1070.    </property>
  1071.    <property id="cuePoints">
  1072.       <Inspectable name="cuePoints" variable="cuePoints" category="" verbose="0" defaultValue="" type="Video Cue Points"/>
  1073.    </property>
  1074.    <property id="isLive">
  1075.       <Inspectable name="isLive" variable="isLive" category="" verbose="0" defaultValue="false" type="Boolean"/>
  1076.    </property>
  1077.    <property id="maintainAspectRatio">
  1078.       <Inspectable name="maintainAspectRatio" variable="maintainAspectRatio" category="" verbose="0" defaultValue="true" type="Boolean"/>
  1079.    </property>
  1080.    <property id="skin">
  1081.       <Inspectable name="skin" variable="skin" category="" verbose="0" defaultValue="" type="Video Skin"/>
  1082.    </property>
  1083.    <property id="skinAutoHide">
  1084.       <Inspectable name="skinAutoHide" variable="skinAutoHide" category="" verbose="0" defaultValue="false" type="Boolean"/>
  1085.    </property>
  1086.    <property id="totalTime">
  1087.       <Inspectable name="totalTime" variable="totalTime" category="" verbose="0" defaultValue="0" type="Number"/>
  1088.    </property>
  1089.    <property id="version_1_0_2">
  1090.       <Inspectable name="version_1_0_2" variable="version_1_0_2" category="" verbose="0" defaultValue="" type="String"/>
  1091.    </property>
  1092.    <property id="volume">
  1093.       <Inspectable name="volume" variable="volume" category="" verbose="0" defaultValue="100" type="Number"/>
  1094.    </property>
  1095. ]]></parametersAsXML>
  1096.                 </DOMCompiledClipInstance>
  1097.               </elements>
  1098.             </DOMFrame>
  1099.           </frames>
  1100.         </DOMLayer>
  1101.         <DOMLayer name="Layer 6" color="#808080">
  1102.           <frames>
  1103.             <DOMFrame index="0" keyMode="9728">
  1104.               <elements/>
  1105.             </DOMFrame>
  1106.             <DOMFrame index="1" keyMode="9728">
  1107.               <elements>
  1108.                 <DOMShape>
  1109.                   <fills>
  1110.                     <FillStyle index="1">
  1111.                       <SolidColor/>
  1112.                     </FillStyle>
  1113.                   </fills>
  1114.                   <edges>
  1115.                     <Edge fillStyle1="1" edges="!7914 7093|-10050 7093!-10050 7093|-10050 -5910!-10050 -5910|7914 -5910!7914 -5910|7914 7093"/>
  1116.                   </edges>
  1117.                 </DOMShape>
  1118.               </elements>
  1119.             </DOMFrame>
  1120.           </frames>
  1121.         </DOMLayer>
  1122.       </layers>
  1123.     </DOMTimeline>
  1124.   </timeline>
  1125. </DOMSymbolItem>